<div id="content-bottom">
 <div class="container"></div>
</div>
 
<div id="footer">
 <div class="container clearfix">
 
 <div id="recent-comments-5" class="footer-widget widget_recent_comments">
 <h4 class="widgettitle">  / Your text</h4>
 <ul id="recentcomments">
 <li class="recentcomments"><a href="">  / Your Link</a></li>
 <li class="recentcomments"><a href="">  / Your Link</a></li>
 <li class="recentcomments"><a href="">  / Your Link</a></li>
 <li class="recentcomments"><a href="">  / Your Link</a></li>
 <li class="recentcomments"><a href="">  / Your Link</a></li>
 </div> <!-- end .footer-widget -->

 <div id="linkcat-2" class="footer-widget widget_links">
 <h4 class="widgettitle">  / Your text</h4>
 <ul class='xoxo blogroll'>
 <li class="recentcomments"><a href="">  / Your Link</a></li>
 <li class="recentcomments"><a href="">  / Your Link</a></li>
 <li class="recentcomments"><a href="">  / Your Link</a></li>
 <li class="recentcomments"><a href="">  / Your Link</a></li>
 <li class="recentcomments"><a href="">  / Your Link</a></li>
 </ul>
 </div> <!-- end .footer-widget -->

<div id="meta-4" class="footer-widget widget_meta">
 <h4 class="widgettitle">  / Your text</h4>
<ul>
 <?if($USER_LOGGED_IN$)?>
 <li><a href="$LOGOUT_LINK$"><b></b></a></li>
<?else?>
 <li><a href="$LOGIN_LINK$"><b></b></a></li>
<?endif?>
 <li class="recentcomments"><a href="">  / Your Link</a></li>
 <li class="recentcomments"><a href="">  / Your Link</a></li>
 <li class="recentcomments"><a href="">  / Your Link</a></li>
 </ul>
</div> <!-- end .footer-widget -->

 <div id="recent-posts-5" class="footer-widget widget_recent_entries">
 <h4 class="widgettitle">  / Your text</h4>
 <ul>
 <li class="recentcomments"><a href="">  / Your Link</a></li>
 <li class="recentcomments"><a href="">  / Your Link</a></li>
 <li class="recentcomments"><a href="">  / Your Link</a></li>
 <li class="recentcomments"><a href="">  / Your Link</a></li>
 <li class="recentcomments"><a href="">  / Your Link</a></li>
 </ul>
 </div> <!-- end .footer-widget --> <div class="clear"></div>

 </div> <!--end .container -->
</div> <!-- end #footer -->

<div id="footer-bottom">
<div class="container clearfix">
<ul class="bottom-nav">
 <li><a href="/"></a></li>
 <li><a href="/" title="">.1</a></li>
 <li><a href="/" title="">.2</a></li>
 <li><a href="/" title="">.3</a></li>
 <li><a href="/" title="">.4</a></li>
 <li><a href="/" title="">.5</a></li>
</ul>
 
 <p id="copyright">$POWERED_BY$ |  by <a href="http://urban-project.at.ua/" title="   uCoz">URBAN-PROJECT</a></p>
 </div> <!--end .container -->
</div> <!-- end #footer-bottom -->


 <script type="text/javascript" src="/js/superfish.js"></script>
 <script type="text/javascript">
 //<![CDATA[
 
 jQuery('ul.superfish, #page-menu ul.nav').superfish({
 delay: 200, // one second delay on mouseout
 animation: {opacity:'show',height:'show'}, // fade-in and slide-down animation
 speed: 'fast', // faster animation speed
 autoArrows: true, // disable generation of arrow mark-up
 dropShadows: false // disable drop shadows
 });
 
 jQuery('ul.nav > li > a.sf-with-ul').parent('li').addClass('sf-ul');
 
 et_search_bar();
 et_footer_improvements('#footer .footer-widget');
 
 <!---- et_switcher plugin v1.3 ---->
 (function($)
 {
 $.fn.et_switcher = function(options)
 {
 var defaults =
 {
 slides: '>div',
 activeClass: 'active',
 linksNav: '',
 findParent: true, //use parent elements in defining lengths
 lengthElement: 'li', //parent element, used only if findParent is set to true
 useArrows: false,
 arrowLeft: 'prevlink',
 arrowRight: 'nextlink',
 auto: false,
 autoSpeed: 5000
 };

 var options = $.extend(defaults, options);

 return this.each(function()
 {
 var slidesContainer = jQuery(this);
 slidesContainer.find(options.slides).hide().end().find(options.slides).filter(':first').css('display','block');
 
 if (options.linksNav != '') {
 var linkSwitcher = jQuery(options.linksNav);
 
 linkSwitcher.click(function(){
 var targetElement;

 if (options.findParent) targetElement = jQuery(this).parent();
 else targetElement = jQuery(this);

 if (targetElement.hasClass('active')) return false;

 targetElement.siblings().removeClass('active').end().addClass('active');

 var ordernum = targetElement.prevAll(options.lengthElement).length;
 
 slidesContainer.find(options.slides).filter(':visible').hide().end().end().find(options.slides).filter(':eq('+ordernum+')').stop().fadeIn(700);
 return false;
 });
 };
 
 jQuery('#'+options.arrowRight+', #'+options.arrowLeft).click(function(){
 
 var slideActive = slidesContainer.find(options.slides).filter(":visible"),
 nextSlide = slideActive.next(),
 prevSlide = slideActive.prev();

 if (jQuery(this).attr("id") == options.arrowRight) {
 if (nextSlide.length) {
 var ordernum = nextSlide.prevAll().length;
 } else { var ordernum = 0; }
 };

 if (jQuery(this).attr("id") == options.arrowLeft) {
 if (prevSlide.length) {
 var ordernum = prevSlide.prevAll().length;
 } else { var ordernum = slidesContainer.find(options.slides).length-1; }
 };

 slidesContainer.find(options.slides).filter(':visible').hide().end().end().find(options.slides).filter(':eq('+ordernum+')').stop().fadeIn(700);

 if (typeof interval != 'undefined') {
 clearInterval(interval);
 auto_rotate();
 };

 return false;
 });

 if (options.auto) {
 auto_rotate();
 };
 
 function auto_rotate(){
 interval = setInterval(function(){
 var slideActive = slidesContainer.find(options.slides).filter(":visible"),
 nextSlide = slideActive.next();
 
 if (nextSlide.length) {
 var ordernum = nextSlide.prevAll().length;
 } else { var ordernum = 0; }
 
 if (options.linksNav === '')
 jQuery('#'+options.arrowRight).trigger("click");
 else
 linkSwitcher.filter(':eq('+ordernum+')').trigger("click");
 },options.autoSpeed);
 };
 });
 }
 })(jQuery);
 
 
 var $featuredArea = jQuery('#featured'),
 $all_tabs = jQuery('#all_tabs');
 
 if ($featuredArea.length) {
 $featuredArea.et_switcher({
 useArrows: true ,
 auto: true,
 autoSpeed: 5000
 });
 };
 
 if ($all_tabs.length) {
 $all_tabs.et_switcher({
 linksNav: 'ul#tab_controls li a'
 });
 };

 
 <!---- Footer Improvements ---->
 function et_footer_improvements($selector){
 var $footer_widget = jQuery($selector);
 
 if (!($footer_widget.length == 0)) {
 $footer_widget.each(function (index, domEle) {
 if ((index+1)%4 == 0) jQuery(domEle).addClass("last").after("<div class='clear'></div>");
 });
 };
 };
 
 <!---- Search Bar Improvements ---->
 function et_search_bar(){
 var $searchform = jQuery('#header-bottom div#search-form'),
 $searchinput = $searchform.find("input#searchinput"),
 searchvalue = $searchinput.val();
 
 $searchinput.focus(function(){
 if (jQuery(this).val() === searchvalue) jQuery(this).val("");
 }).blur(function(){
 if (jQuery(this).val() === "") jQuery(this).val(searchvalue);
 });
 };
 
 //]]>
 </script>

<script type="text/javascript">
setNum = function(c,n){
 var a,b,i,d;
 a = document.all||document.getElementsByTagName('*');
 for(b=0;b<a.length;b++){if(new RegExp("(^|\\b)"+c+"(\\b|$)").test(a[b].className)){
 i = function(){
 d = parseFloat(a[b].innerHTML);
 if(!d){return n[2]}else
 if(d%1){return n[1]}else
 if(/(11|12|13|14|5|6|7|8|9|0)$/.test(d)){return n[2]}else
 if(/1$/.test(d)){return n[0]}else
 if(/(2|3|4)$/.test(d)){return n[1]}
 };
 a[b].innerHTML=i().replace(/\{N\}/,d||0);
 }}
 }
</script>
<script type="text/javascript">
setNum('comms',['{N} ','{N} ','{N} ']);
</script>